home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
t3_1
/
risc_src.lha
/
risc_sources
/
mipsco
/
clean
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-10-16
|
230 b
|
12 lines
#! /bin/csh -f
# Remove big-endian MIPS def/info/noise/object files from the source tree
cd ..
set top = `pwd`
set dirs = (`find . -type d -print`)
set nonomatch
foreach d ($dirs)
echo $d; cd $d; rm -f *.mb[dino]; cd $top
end